home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 71 / MOBICLIC 71.ISO / mac / DATA / COMMUN / temp0001 / 00290_Script_LANCEMENT_SON_RUBRIQUE-AVEC_ENREGISTREMENT_DE_LABEL+COUPE_MUSIK < prev    next >
Text File  |  2004-12-05  |  553b  |  22 lines

  1. global gze_Label
  2. property pRef_son,p_coupeMusik
  3. -----------------
  4. on getPropertyDescriptionList me
  5.   return [#pRef_son:[#comment: "suffixe du son rubrique:",#format:  #string, #default: EMPTY ],\
  6. #p_coupeMusik:[#comment: "couper la musique?",#format:  #boolean, #default:FALSE ]]
  7. end getPropertyDescriptionList
  8. ---------------------
  9. on prepareFrame me
  10.   cursor -1
  11.   gze_Label = the frameLabel
  12. end
  13. ----------------
  14. on exitFrame me
  15.   if p_coupeMusik then
  16.     coupeson(1)
  17.     niveauSon()
  18.   end if
  19.   sonrub(pRef_son)
  20. end
  21. --------------
  22.